python查看对象占用的内存空间大小,一共两步 引用sys模块使用getsizeof()方法 举例如下 import sys a = [x for x in range(1000)] print sys.getsizeof(a) 完成!